home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / test / makefile.gcc < prev    next >
Makefile  |  1993-12-06  |  497b  |  26 lines

  1.  
  2. !if $d(DEBUG)
  3. GCCDBG= -g
  4. !endif
  5.  
  6. GCCEXE= test. wintest. winclip. cliptest. rgbtest. framtest. \
  7.     colorops. blittest. fonttest. curstest. mousetst. \
  8.     circtest. polytest. arctest. testpatt. linetest.
  9.  
  10. all:    $(GCCEXE)
  11.  
  12. .c.:
  13.     gcc $(GCCDBG) -O -I../include -L../lib -o $* $*.c -lgrx -lm
  14.  
  15. redo:
  16.     cd ..\src
  17. !if $d(DEBUG)
  18.     make.exe -fmakefile.gcc -DDEBUG
  19. !else
  20.     make.exe -fmakefile.gcc
  21. !endif
  22.     cd ..\test
  23.  
  24. $(GCCEXE): test.h ../include/grx.h ../include/mousex.h ../lib/libgrx.a
  25.  
  26.